home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 005 / mandelbrotsrc / m < prev    next >
Text File  |  1995-03-17  |  516b  |  21 lines

  1. .Key file,opt1,opt2,opt3
  2. ;           Compile a C program                       Version 4.00
  3. ;           Works with Lattice version 3.03 and above
  4. if not exists mand<file>.c
  5.    echo "File mand<file>.c does not exist.  Try again."
  6.    skip END
  7.    endif
  8. echo "-- compiling...mand<file>.c"
  9.  
  10. :c/lc1 <opt1> <opt2> <opt3> -i:include/ -i:include/lattice/ mand<file>
  11. if not exists "mand<file>.q"
  12.    echo "Compile failed."
  13.    quit 20
  14.    endif
  15. :c/lc2 mand<file>
  16.  
  17. echo "-- done compiling 'mand<file>'. --"
  18. LAB END
  19. date >df0:now
  20.  
  21.